home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / ULT2.M3 < prev    next >
Text File  |  1996-04-01  |  4KB  |  151 lines

  1. name Hurco Ultimax II
  2.  
  3. % 00
  4. / 00
  5. ( 00
  6. N 5 Limit 59999
  7. G >2
  8. X ->3.>4
  9. Y ->3.>4
  10. Z ->3.>4
  11. A ->3.>4
  12. I ->3.>4
  13. J ->3.>4
  14. K ->3.>4
  15. z >3.>4 Z
  16. Q >3.>4 Z
  17. F >3.1
  18. T >2
  19. D >3.>4
  20. S >4
  21. M >2
  22. E 00
  23. e >3.>4
  24. f >3.>4
  25. s >2
  26. ) 00
  27.  
  28. ModalLetters X Y Z z F T              # List of letters that are modal    
  29.  
  30. ModalGs 0 1 2 3 17 18 19 74 75 80 81 82 83 84 85 86 87  # List of g codes that are modal    
  31.  
  32. Sequence#s N 1 1 1                    # Char, freq, incr & start          
  33. First#? N                             # Y or N  'Output 1st sequence no.  
  34. Last#? N                              # Y or N  'Output last sequence no. 
  35.  
  36. HCode X                               # X or X U  'Horizontal char.       
  37. VCode Y                               # Y or Y V  'Vertical char.         
  38. Dcode Z                               # Depth char.                       
  39. FeedCode F                            # Feed rate char.                   
  40.  
  41. Comment /( )                          # Begin End comment char.           
  42.  
  43. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  44. Coolant 8 9 7                         # On, Off & Mist m codes            
  45. DComp 41 42 40                        # Left, Right & Cancel m codes      
  46.   #LComp 43 49
  47.  
  48. Feed G1                             # Linear move                       
  49. Rapid G0                            # Rapid positioning word            
  50. Cw G2                               # Circular move clockwise           
  51. Ccw G3                              # Circular move counter clockwise   
  52.  
  53. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  54.  
  55.  
  56. CtrCode I J K                         # I J or R or I J K L               
  57. Helical? Y
  58.  
  59. Spaces? Y                             # Y or N  'Spaces between words     
  60.  
  61. Incremental? N                        # Y or N  'Inc or abs output        
  62. CtrIncremental? N                     # Y or N  'Inc or abs I & J         
  63. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  64.  
  65. Inch/MM 70 71                         # Inch & Metric g codes             
  66.  
  67. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  68.  
  69.  
  70. Drill 1                               # Drilling canned/manual cycle      
  71. G81 X[H] Y[V] z[D] F[FRate]
  72. X[H] Y[V]
  73. end cancel
  74.  
  75. Peck 1                                # Pecking canned/manual cycle       
  76. G83 X[H] Y[V] z[D] Q[VBite] F[FRate]
  77. X[H] Y[V]
  78. end cancel
  79.  
  80. Tap 1                                 # Tapping canned/manual cycle       
  81. G84 X[H] Y[V] z[D] F[Frate]
  82. X[H] Y[V]
  83. end cancel
  84.  
  85. Ream 1                                # Reaming canned/manual cycle       
  86. G85 X[H] Y[V] z[D] F[FRate]
  87. X[H] Y[V]
  88. end cancel
  89.  
  90. Bore 1                                # Boring canned/manual cycle        
  91. G86 X[H] Y[V] z[D] F[FRate]
  92. X[H] Y[V]
  93. end cancel
  94.  
  95. Cancel                                # Cancel a canned/manual cycle      
  96. G0 G80 Z[Rplane]
  97. end
  98.  
  99. StartCode                             # Start of the program              
  100. %0
  101. End
  102.  
  103. 1stToolChange                         # First tool change                 
  104. G0 G17 G40 G[Unitmode] G90
  105. G75 G80
  106. M25
  107. /0 (0 e[ToolDiam] f[corner] )0
  108. T[Tool] D[ToolDiam] M6
  109. S[Speed] M[Direct]
  110. G0 X[H] Y[V]
  111. Z[RPlane] M[Cool]
  112. End
  113.  
  114. Infeed                                # Enable cutter comp                
  115. G[Side] X[H] Y[V] F[FRate]
  116. end
  117.  
  118. Outfeed                               # Disable cutter comp               
  119. G1 G40 X[H] Y[V]
  120. end
  121.  
  122. ToolChange                            # Secondary tool changes            
  123. M25
  124. /0 (0 e[ToolDiam] f[corner] )0
  125. G90 X[ToolH] Y[ToolV] M[Cool]
  126. T[Tool] D[ToolDiam] M6
  127. S[Speed] M[Direct]
  128. G0 X[H] Y[V]
  129. G0 Z[RPlane] M[Cool]
  130. End
  131.  
  132. EndCode                               # End of the program                
  133. M25
  134. G90 X[ToolH] Y[ToolV] M[Cool]
  135. M2
  136. E0
  137. End
  138.  
  139. CwCode                                # CW circular move                  
  140. G2 X[H] Y[V] I[HCtr] J[VCtr] F[FRate]
  141. end
  142.  
  143. CcwCode                               # CCW circular move                 
  144. G3 X[H] Y[V] I[HCtr] J[VCtr] F[FRate]
  145. end
  146.  
  147. replace "e" with "Tool Diameter: "
  148. replace "f" with "Tool Corner: "
  149. replace " ( " with "("
  150. replace " )" with ")"
  151.